home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / MALLOC.C < prev    next >
Text File  |  1997-01-12  |  228b  |  11 lines

  1. /*
  2. ** Memory allocation of size bytes.
  3. ** size  = Size of the block in bytes.
  4. ** Returns the address of the allocated block,
  5. ** else NULL for failure.
  6. */
  7. malloc(size) unsigned size; {
  8.   return (_alloc(size, NO));
  9.   }
  10.  
  11.